home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Source / Property Editors / DSDEFINE.DFM / DSDEFINE.txt
Encoding:
Text File  |  1999-08-11  |  4.3 KB  |  217 lines

  1. object DefineField: TDefineField
  2.   Left = 221
  3.   Top = 137
  4.   BorderStyle = bsDialog
  5.   Caption = 'New Field'
  6.   ClientHeight = 258
  7.   ClientWidth = 417
  8.   ParentFont = True
  9.   Position = poScreenCenter
  10.   OnCreate = FormCreate
  11.   PixelsPerInch = 96
  12.   TextHeight = 13
  13.   object LookupGroup: TGroupBox
  14.     Left = 8
  15.     Top = 136
  16.     Width = 401
  17.     Height = 81
  18.     Caption = 'Lookup definition'
  19.     TabOrder = 2
  20.     object DatasetLabel: TLabel
  21.       Left = 208
  22.       Top = 19
  23.       Width = 40
  24.       Height = 13
  25.       Caption = 'D&ataset:'
  26.       Enabled = False
  27.       FocusControl = DatasetList
  28.     end
  29.     object KeyFieldsLabel: TLabel
  30.       Left = 8
  31.       Top = 19
  32.       Width = 51
  33.       Height = 13
  34.       Caption = '&Key Fields:'
  35.       Enabled = False
  36.       FocusControl = KeyFieldsList
  37.     end
  38.     object LookupKeysLabel: TLabel
  39.       Left = 8
  40.       Top = 51
  41.       Width = 65
  42.       Height = 13
  43.       Caption = 'Look&up Keys:'
  44.       Enabled = False
  45.       FocusControl = LookupKeysList
  46.     end
  47.     object ResultFieldLabel: TLabel
  48.       Left = 208
  49.       Top = 51
  50.       Width = 58
  51.       Height = 13
  52.       Caption = '&Result Field:'
  53.       Enabled = False
  54.       FocusControl = ResultFieldList
  55.     end
  56.     object DatasetList: TComboBox
  57.       Left = 272
  58.       Top = 16
  59.       Width = 121
  60.       Height = 21
  61.       Enabled = False
  62.       ItemHeight = 13
  63.       TabOrder = 1
  64.       OnChange = DatasetListChange
  65.       OnDropDown = DatasetListDropDown
  66.     end
  67.     object KeyFieldsList: TComboBox
  68.       Left = 80
  69.       Top = 16
  70.       Width = 121
  71.       Height = 21
  72.       Enabled = False
  73.       ItemHeight = 13
  74.       TabOrder = 0
  75.       OnDropDown = KeyFieldsListDropDown
  76.     end
  77.     object LookupKeysList: TComboBox
  78.       Left = 80
  79.       Top = 48
  80.       Width = 121
  81.       Height = 21
  82.       Enabled = False
  83.       ItemHeight = 13
  84.       TabOrder = 2
  85.       OnDropDown = LookupKeysListDropDown
  86.     end
  87.     object ResultFieldList: TComboBox
  88.       Left = 272
  89.       Top = 48
  90.       Width = 121
  91.       Height = 21
  92.       Enabled = False
  93.       ItemHeight = 13
  94.       TabOrder = 3
  95.       OnDropDown = ResultFieldListDropDown
  96.     end
  97.   end
  98.   object OkBtn: TButton
  99.     Left = 174
  100.     Top = 226
  101.     Width = 75
  102.     Height = 25
  103.     Caption = 'OK'
  104.     Default = True
  105.     ModalResult = 1
  106.     TabOrder = 3
  107.     OnClick = OkBtnClick
  108.   end
  109.   object CancelBtn: TButton
  110.     Left = 254
  111.     Top = 226
  112.     Width = 75
  113.     Height = 25
  114.     Cancel = True
  115.     Caption = 'Cancel'
  116.     ModalResult = 2
  117.     TabOrder = 4
  118.   end
  119.   object HelpBtn: TButton
  120.     Left = 334
  121.     Top = 226
  122.     Width = 75
  123.     Height = 25
  124.     Caption = '&Help'
  125.     TabOrder = 5
  126.     OnClick = HelpBtnClick
  127.   end
  128.   object FieldGroup: TGroupBox
  129.     Left = 8
  130.     Top = 8
  131.     Width = 401
  132.     Height = 81
  133.     Caption = 'Field properties'
  134.     TabOrder = 0
  135.     object ComponentNameLabel: TLabel
  136.       Left = 208
  137.       Top = 19
  138.       Width = 57
  139.       Height = 13
  140.       Caption = 'C&omponent:'
  141.       FocusControl = ComponentNameEdit
  142.     end
  143.     object FieldNameLabel: TLabel
  144.       Left = 11
  145.       Top = 19
  146.       Width = 31
  147.       Height = 13
  148.       Caption = '&Name:'
  149.       FocusControl = FieldNameEdit
  150.     end
  151.     object FieldTypeLabel: TLabel
  152.       Left = 8
  153.       Top = 51
  154.       Width = 27
  155.       Height = 13
  156.       Caption = '&Type:'
  157.       FocusControl = FieldTypeList
  158.     end
  159.     object SizeEditLabel: TLabel
  160.       Left = 208
  161.       Top = 51
  162.       Width = 23
  163.       Height = 13
  164.       Caption = '&Size:'
  165.       FocusControl = SizeEdit
  166.     end
  167.     object ComponentNameEdit: TEdit
  168.       Left = 272
  169.       Top = 16
  170.       Width = 121
  171.       Height = 21
  172.       TabOrder = 1
  173.     end
  174.     object FieldNameEdit: TEdit
  175.       Left = 64
  176.       Top = 16
  177.       Width = 137
  178.       Height = 21
  179.       TabOrder = 0
  180.       OnChange = FieldNameEditChange
  181.       OnClick = FieldNameEditChange
  182.     end
  183.     object FieldTypeList: TComboBox
  184.       Left = 64
  185.       Top = 48
  186.       Width = 137
  187.       Height = 21
  188.       ItemHeight = 13
  189.       TabOrder = 2
  190.       OnChange = FieldTypeListChange
  191.     end
  192.     object SizeEdit: TEdit
  193.       Left = 272
  194.       Top = 48
  195.       Width = 57
  196.       Height = 21
  197.       MaxLength = 5
  198.       TabOrder = 3
  199.     end
  200.   end
  201.   object FieldKind: TRadioGroup
  202.     Left = 8
  203.     Top = 92
  204.     Width = 401
  205.     Height = 41
  206.     Caption = 'Field type'
  207.     Columns = 3
  208.     ItemIndex = 0
  209.     Items.Strings = (
  210.       '&Data'
  211.       '&Calculated'
  212.       '&Lookup')
  213.     TabOrder = 1
  214.     OnClick = FieldKindClick
  215.   end
  216. end
  217.